home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / GNU / emacs.inst / emacs19.idb / usr / gnu / info / elisp-27.z / elisp-27
Encoding:
GNU Info File  |  1994-08-02  |  49.6 KB  |  1,250 lines

  1. This is Info file elisp, produced by Makeinfo-1.55 from the input file
  2. elisp.texi.
  3.  
  4.    This version is newer than the second printed edition of the GNU
  5. Emacs Lisp Reference Manual.  It corresponds to Emacs Version 19.19.
  6.  
  7.    Published by the Free Software Foundation 675 Massachusetts Avenue
  8. Cambridge, MA 02139 USA
  9.  
  10.    Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  11.  
  12.    Permission is granted to make and distribute verbatim copies of this
  13. manual provided the copyright notice and this permission notice are
  14. preserved on all copies.
  15.  
  16.    Permission is granted to copy and distribute modified versions of
  17. this manual under the conditions for verbatim copying, provided that
  18. the entire resulting derived work is distributed under the terms of a
  19. permission notice identical to this one.
  20.  
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions, except that this permission notice may be stated in a
  24. translation approved by the Foundation.
  25.  
  26.    Permission is granted to copy and distribute modified versions of
  27. this manual under the conditions for verbatim copying, provided also
  28. that the section entitled "GNU Emacs General Public License" is included
  29. exactly as in the original, and provided that the entire resulting
  30. derived work is distributed under the terms of a permission notice
  31. identical to this one.
  32.  
  33.    Permission is granted to copy and distribute translations of this
  34. manual into another language, under the above conditions for modified
  35. versions, except that the section entitled "GNU Emacs General Public
  36. License" may be included in a translation approved by the Free Software
  37. Foundation instead of in the original English.
  38.  
  39. 
  40. File: elisp,  Node: Sentinels,  Next: Transaction Queues,  Prev: Output from Processes,  Up: Processes
  41.  
  42. Sentinels: Detecting Process Status Changes
  43. ===========================================
  44.  
  45.    A "process sentinel" is a function that is called whenever the
  46. associated process changes status for any reason, including signals
  47. (whether sent by Emacs or caused by the process's own actions) that
  48. terminate, stop, or continue the process.  The process sentinel is also
  49. called if the process exits.  The sentinel receives two arguments: the
  50. process for which the event occurred, and a string describing the type
  51. of event.
  52.  
  53.    The string describing the event looks like one of the following:
  54.  
  55.    * `"finished\n"'.
  56.  
  57.    * `"exited abnormally with code EXITCODE\n"'.
  58.  
  59.    * `"NAME-OF-SIGNAL\n"'.
  60.  
  61.    * `"NAME-OF-SIGNAL (core dumped)\n"'.
  62.  
  63.    A sentinel runs only while Emacs is waiting (e.g., for terminal
  64. input, or for time to elapse, or for process output).  This avoids the
  65. timing errors that could result from running them at random places in
  66. the middle of other Lisp programs.  You may explicitly cause Emacs to
  67. wait, so that sentinels will run, by calling `sit-for', `sleep-for' or
  68. `accept-process-output' (*note Accepting Output::.).  Emacs is also
  69. waiting when the command loop is reading input.
  70.  
  71.    Quitting is normally inhibited within a sentinel--otherwise, the
  72. effect of typing `C-g' at command level or to quit a user command would
  73. be unpredictable.  If you want to permit quitting inside a sentinel,
  74. bind `inhibit-quit' to `nil'.  *Note Quitting::.
  75.  
  76.    All sentinels that do regexp searching or matching should save and
  77. restore the match data.  Otherwise, a sentinel that runs during a call
  78. to `sit-for' might clobber the match data of the program that called
  79. `sit-for'.  *Note Match Data::.
  80.  
  81.  - Function: set-process-sentinel PROCESS SENTINEL
  82.      This function associates SENTINEL with PROCESS.  If SENTINEL is
  83.      `nil', then the process will have no sentinel.  The default
  84.      behavior when there is no sentinel is to insert a message in the
  85.      process's buffer when the process status changes.
  86.  
  87.           (defun msg-me (process event)
  88.              (princ
  89.                (format "Process: %s had the event `%s'" process event)))
  90.           (set-process-sentinel (get-process "shell") 'msg-me)
  91.                => msg-me
  92.  
  93.           (kill-process (get-process "shell"))
  94.                -| Process: #<process shell> had the event `killed'
  95.                => #<process shell>
  96.  
  97.  - Function: process-sentinel PROCESS
  98.      This function returns the sentinel of PROCESS, or `nil' if it has
  99.      none.
  100.  
  101.  - Function: waiting-for-user-input-p
  102.      While a sentinel or filter function is running, this function
  103.      returns non-`nil' if Emacs was waiting for keyboard input from the
  104.      user at the time the sentinel or filter function was called, `nil'
  105.      if it was not.
  106.  
  107. 
  108. File: elisp,  Node: Transaction Queues,  Next: TCP,  Prev: Sentinels,  Up: Processes
  109.  
  110. Transaction Queues
  111. ==================
  112.  
  113.    You can use a "transaction queue" for more convenient communication
  114. with subprocesses using transactions.  First use `tq-create' to create
  115. a transaction queue communicating with a specified process.  Then you
  116. can call `tq-enqueue' to send a transaction.
  117.  
  118.  - Function: tq-create PROCESS
  119.      This function creates and returns a transaction queue
  120.      communicating with PROCESS.  The argument PROCESS should be a
  121.      subprocess capable of sending and receiving streams of bytes.  It
  122.      may be a child process, or it may be a TCP connection to a server
  123.      possibly on another machine.
  124.  
  125.  - Function: tq-enqueue QUEUE QUESTION REGEXP CLOSURE FN
  126.      This function sends a transaction to queue QUEUE.  Specifying the
  127.      queue has the effect of specifying the subprocess to talk to.
  128.  
  129.      The argument QUESTION is the outgoing message which starts the
  130.      transaction.  The argument FN is the function to call when the
  131.      corresponding answer comes back; it is called with two arguments:
  132.      CLOSURE, and the answer received.
  133.  
  134.      The argument REGEXP is a regular expression to match the entire
  135.      answer; that's how `tq-enqueue' tells where the answer ends.
  136.  
  137.      The return value of `tq-enqueue' itself is not meaningful.
  138.  
  139.  - Function: tq-close QUEUE
  140.      Shut down transaction queue QUEUE, waiting for all pending
  141.      transactions to complete, and then terminate the connection or
  142.      child process.
  143.  
  144.    Transaction queues are implemented by means of a filter function.
  145. *Note Filter Functions::.
  146.  
  147. 
  148. File: elisp,  Node: TCP,  Prev: Transaction Queues,  Up: Processes
  149.  
  150. TCP
  151. ===
  152.  
  153.    Emacs Lisp programs can open TCP connections to other processes on
  154. the same machine or other machines.  A network connection is handled by
  155. Lisp much like a subprocess, and is represented by a process object.
  156. However, the process you are communicating with is not a child of the
  157. Emacs process, so you can't kill it or send it signals.  All you can do
  158. is send and receive data.  `delete-process' closes the connection, but
  159. does not kill the process at the other end; that process must decide
  160. what to do about closure of the connection.
  161.  
  162.    You can distinguish process objects representing network connections
  163. from those representing subprocesses with the `process-status'
  164. function.  *Note Process Information::.
  165.  
  166.  - Function: open-network-stream NAME BUFFER-OR-NAME HOST SERVICE
  167.      This function opens a TCP connection for a service to a host.  It
  168.      returns a process object to represent the connection.
  169.  
  170.      The NAME argument specifies the name for the process object.  It
  171.      is modified as necessary to make it unique.
  172.  
  173.      The BUFFER-OR-NAME argument is the buffer to associate with the
  174.      connection.  Output from the connection is inserted in the buffer,
  175.      unless you specify a filter function to handle the output.  If
  176.      BUFFER-OR-NAME is `nil', it means that the connection is not
  177.      associated with any buffer.
  178.  
  179.      The arguments HOST and SERVICE specify where to connect to; HOST
  180.      is the host name (a string), and SERVICE is the name of a defined
  181.      network service (a string) or a port number (an integer).
  182.  
  183. 
  184. File: elisp,  Node: System Interface,  Next: Display,  Prev: Processes,  Up: Top
  185.  
  186. Operating System Interface
  187. **************************
  188.  
  189.    This chapter is about starting and getting out of Emacs, access to
  190. values in the operating system environment, and terminal input, output
  191. and flow control.
  192.  
  193.    *Note Building Emacs::, for related information.  See also *Note
  194. Display::, for additional operating system status information
  195. pertaining to the terminal and the screen.
  196.  
  197. * Menu:
  198.  
  199. * Starting Up::         Customizing Emacs start-up processing.
  200. * Getting Out::         How exiting works (permanent or temporary).
  201. * System Environment::  Distinguish the name and kind of system.
  202. * User Identification:: Finding the name and user id of the user.
  203. * Time of Day::        Getting the current time.
  204. * Timers::        Setting a timer to call a function at a certain time.
  205. * Terminal Input::      Recording terminal input for debugging.
  206. * Terminal Output::     Recording terminal output for debugging.
  207. * Flow Control::        How to turn output flow control on or off.
  208. * Batch Mode::          Running Emacs without terminal interaction.
  209.  
  210. 
  211. File: elisp,  Node: Starting Up,  Next: Getting Out,  Up: System Interface
  212.  
  213. Starting Up Emacs
  214. =================
  215.  
  216.    This section describes what Emacs does when it is started, and how
  217. you can customize these actions.
  218.  
  219. * Menu:
  220.  
  221. * Start-up Summary::        Sequence of actions Emacs performs at start-up.
  222. * Init File::               Details on reading the init file (`.emacs').
  223. * Terminal-Specific::       How the terminal-specific Lisp file is read.
  224. * Command Line Arguments::  How command line arguments are processed,
  225.                               and how you can customize them.
  226.  
  227. 
  228. File: elisp,  Node: Start-up Summary,  Next: Init File,  Up: Starting Up
  229.  
  230. Summary: Sequence of Actions at Start Up
  231. ----------------------------------------
  232.  
  233.    The order of operations performed (in `startup.el') by Emacs when it
  234. is started up is as follows:
  235.  
  236.   1. It runs the normal hook `before-init-hook'.
  237.  
  238.   2. It loads `.emacs' unless `-q' was specified on command line.
  239.      (This is not done in `-batch' mode.)  `.emacs' is found in the
  240.      user's home directory; the `-u' option can specify the user name
  241.      whose home directory should be used.
  242.  
  243.   3. It loads `default.el' unless `inhibit-default-init' is non-`nil'.
  244.      (This is not done in `-batch' mode or if `-q' was specified on
  245.      command line.)
  246.  
  247.   4. It runs the normal hook `after-init-hook'.
  248.  
  249.   5. It loads the terminal-specific Lisp file, if any, except when in
  250.      batch mode.
  251.  
  252.   6. It runs `term-setup-hook'.
  253.  
  254.   7. It runs `window-setup-hook'.  *Note Window Systems::.
  255.  
  256.   8. It displays copyleft and nonwarranty, plus basic use information,
  257.      unless the value of the variable `inhibit-startup-message' is
  258.      non-`nil'.
  259.  
  260.      This display is also inhibited in batch mode, and if the current
  261.      buffer is not `*scratch*'.
  262.  
  263.   9. It processes any remaining command line arguments.
  264.  
  265.  - User Option: inhibit-startup-message
  266.      This variable inhibits the initial startup messages (the
  267.      nonwarranty, etc.).  If it is non-`nil', then the messages are not
  268.      printed.
  269.  
  270.      This variable exists so you can set it in your personal init file,
  271.      once you are familiar with the contents of the startup message.
  272.      Do not set this variable in the init file of a new user, or in a
  273.      way that affects more than one user, because that would prevent
  274.      new users from receiving the information they are supposed to see.
  275.  
  276. 
  277. File: elisp,  Node: Init File,  Next: Terminal-Specific,  Prev: Start-up Summary,  Up: Starting Up
  278.  
  279. The Init File: `.emacs'
  280. -----------------------
  281.  
  282.    When you start Emacs, it normally attempts to load the file `.emacs'
  283. from your home directory.  This file, if it exists, must contain Lisp
  284. code.  It is called your "init file".  The command line switches `-q'
  285. and `-u' can be used to control the use of the init file; `-q' says not
  286. to load an init file, and `-u' says to load a specified user's init
  287. file instead of yours.  *Note Entering Emacs: (emacs)Entering Emacs.
  288.  
  289.    Emacs may also have a "default init file", which is the library
  290. named `default.el'.  Emacs finds the `default.el' file through the
  291. standard search path for libraries (*note How Programs Do Loading::.).
  292. The Emacs distribution does not have any such file; you may create one
  293. at your site for local customizations.  If the default init file
  294. exists, it is loaded whenever you start Emacs, except in batch mode or
  295. if `-q' is specified.  But your own personal init file, if any, is
  296. loaded first; if it sets `inhibit-default-init' to a non-`nil' value,
  297. then Emacs will not subsequently load the `default.el' file.
  298.  
  299.    If there is a great deal of code in your `.emacs' file, you should
  300. move it into another file named `SOMETHING.el', byte-compile it (*note
  301. Byte Compilation::.), and make your `.emacs' file load the other file
  302. using `load' (*note Loading::.).
  303.  
  304.    *Note Init File Examples: (emacs)Init File Examples, for examples of
  305. how to make various commonly desired customizations in your `.emacs'
  306. file.
  307.  
  308.  - User Option: inhibit-default-init
  309.      This variable prevents Emacs from loading the default
  310.      initialization library file for your session of Emacs.  If its
  311.      value is non-`nil', then the default library is not loaded.  The
  312.      default value is `nil'.
  313.  
  314.  - Variable: before-init-hook
  315.  - Variable: after-init-hook
  316.      These two normal hooks are run just before, and just after,
  317.      loading of the user's init file or `default.el'.
  318.  
  319. 
  320. File: elisp,  Node: Terminal-Specific,  Next: Command Line Arguments,  Prev: Init File,  Up: Starting Up
  321.  
  322. Terminal-Specific Initialization
  323. --------------------------------
  324.  
  325.    Each terminal type can have its own Lisp library that Emacs loads
  326. when run on that type of terminal.  For a terminal type named TERMTYPE,
  327. the library is called `term/TERMTYPE'.  Emacs finds the file by
  328. searching the `load-path' directories as it does for other files, and
  329. trying the `.elc' and `.el' suffixes.  Normally, terminal-specific Lisp
  330. library is located in `emacs/lisp/term', a subdirectory of the
  331. `emacs/lisp' directory in which most Emacs Lisp libraries are kept.
  332.  
  333.    The library's name is constructed by concatenating the value of the
  334. variable `term-file-prefix' and the terminal type.  Normally,
  335. `term-file-prefix' has the value `"term/"'; changing this is not
  336. recommended.
  337.  
  338.    The usual function of a terminal-specific library is to enable
  339. special keys to send sequences that Emacs can recognize.  It may also
  340. need to set or add to `function-key-map' if the Termcap entry does not
  341. fully explain what should go in it.  *Note Terminal Input::.
  342.  
  343.    When the name of the terminal type contains a hyphen, only the part
  344. of the name before the first hyphen is significant in choosing the
  345. library name.  Thus, terminal types `aaa-48' and `aaa-30-rv' both use
  346. the `term/aaa' library.  If necessary, the library can evaluate
  347. `(getenv "TERM")' to find the full name of the terminal type.
  348.  
  349.    Your `.emacs' file can prevent the loading of the terminal-specific
  350. library by setting the variable `term-file-prefix' to `nil'.  This
  351. feature is very useful when experimenting with your own peculiar
  352. customizations.
  353.  
  354.    You can also arrange to override some of the actions of the
  355. terminal-specific library by setting the variable `term-setup-hook'.
  356. This is a normal hook which Emacs runs using `run-hooks' at the end of
  357. Emacs initialization, after loading both your `.emacs' file and any
  358. terminal-specific libraries.  You can use this variable to define
  359. initializations for terminals that do not have their own libraries.
  360. *Note Hooks::.
  361.  
  362.  - Variable: term-file-prefix
  363.      If the `term-file-prefix' variable is non-`nil', Emacs loads a
  364.      terminal-specific initialization file as follows:
  365.  
  366.           (load (concat term-file-prefix (getenv "TERM")))
  367.  
  368.      You may set the `term-file-prefix' variable to `nil' in your
  369.      `.emacs' file if you do not wish to load the
  370.      terminal-initialization file.  To do this, put the following in
  371.      your `.emacs' file: `(setq term-file-prefix nil)'.
  372.  
  373.  - Variable: term-setup-hook
  374.      This variable is a normal hook which Emacs runs after loading your
  375.      `.emacs' file, the default initialization file (if any) and after
  376.      loading terminal-specific Lisp files.  arguments.
  377.  
  378.      You can use `term-setup-hook' to override the definitions made by
  379.      a terminal-specific file.
  380.  
  381.    See `window-setup-hook' in *Note Window Systems::, for a related
  382. feature.
  383.  
  384. 
  385. File: elisp,  Node: Command Line Arguments,  Prev: Terminal-Specific,  Up: Starting Up
  386.  
  387. Command Line Arguments
  388. ----------------------
  389.  
  390.    You can use command line arguments to request various actions when
  391. you start Emacs.  Since you do not need to start Emacs more than once
  392. per day, and will often leave your Emacs session running longer than
  393. that, command line arguments are hardly ever used.  As a practical
  394. matter, it is best to avoid making the habit of using them, since this
  395. habit would encourage you to kill and restart Emacs unnecessarily
  396. often.  These options exist for two reasons: to be compatible with
  397. other editors (for invocation by other programs) and to enable shell
  398. scripts to run specific Lisp programs.
  399.  
  400.  - Function: command-line
  401.      This function parses the command line which Emacs was called with,
  402.      processes it, loads the user's `.emacs' file and displays the
  403.      initial nonwarranty information, etc.
  404.  
  405.  - Variable: command-line-processed
  406.      The value of this variable is `t' once the command line has been
  407.      processed.
  408.  
  409.      If you redump Emacs by calling `dump-emacs', you may wish to set
  410.      this variable to `nil' first in order to cause the new dumped Emacs
  411.      to process its new command line arguments.
  412.  
  413.  - Variable: command-switch-alist
  414.      The value of this variable is an alist of user-defined command-line
  415.      options and associated handler functions.  This variable exists so
  416.      you can add elements to it.
  417.  
  418.      A "command line option" is an argument on the command line of the
  419.      form:
  420.  
  421.           -OPTION
  422.  
  423.      The elements of the `command-switch-alist' look like this:
  424.  
  425.           (OPTION . HANDLER-FUNCTION)
  426.  
  427.      The HANDLER-FUNCTION is called to handle OPTION and receives the
  428.      option name as its sole argument.
  429.  
  430.      In some cases, the option is followed in the command line by an
  431.      argument.  In these cases, the HANDLER-FUNCTION can find all the
  432.      remaining command-line arguments in the variable
  433.      `command-line-args-left'.  (The entire list of command-line
  434.      arguments is in `command-line-args'.)
  435.  
  436.      The command line arguments are parsed by the `command-line-1'
  437.      function in the `startup.el' file.  See also *Note Command Line
  438.      Switches and Arguments: (emacs)Command Switches.
  439.  
  440.  - Variable: command-line-args
  441.      The value of this variable is the arguments passed by the shell to
  442.      Emacs, as a list of strings.
  443.  
  444. 
  445. File: elisp,  Node: Getting Out,  Next: System Environment,  Prev: Starting Up,  Up: System Interface
  446.  
  447. Getting out of Emacs
  448. ====================
  449.  
  450.    There are two ways to get out of Emacs: you can kill the Emacs job,
  451. which exits permanently, or you can suspend it, which permits you to
  452. reenter the Emacs process later.  As a practical matter, you seldom kill
  453. Emacs--only when you are about to log out.  Suspending is much more
  454. common.
  455.  
  456. * Menu:
  457.  
  458. * Killing Emacs::        Exiting Emacs irreversibly.
  459. * Suspending Emacs::     Exiting Emacs reversibly.
  460.  
  461. 
  462. File: elisp,  Node: Killing Emacs,  Next: Suspending Emacs,  Up: Getting Out
  463.  
  464. Killing Emacs
  465. -------------
  466.  
  467.    Killing Emacs means ending the execution of the Emacs process.  The
  468. parent process normally resumes control.
  469.  
  470.    All the information in the Emacs process, aside from files that have
  471. been saved, is lost when the Emacs is killed.  Because killing Emacs
  472. inadvertently can lose a lot of work, Emacs queries for confirmation
  473. before actually terminating if you have buffers that need saving or
  474. subprocesses that are running.
  475.  
  476.  - Function: kill-emacs &optional NO-QUERY
  477.      This function exits the Emacs process and kills it.
  478.  
  479.      Normally, if there are modified files or if there are running
  480.      processes, `kill-emacs' asks the user for confirmation before
  481.      exiting.  However, if NO-QUERY is supplied and non-`nil', then
  482.      Emacs exits without confirmation.
  483.  
  484.      If NO-QUERY is an integer, then it is used as the exit status of
  485.      the Emacs process.  (This is useful primarily in batch operation;
  486.      see *Note Batch Mode::.)
  487.  
  488.      If NO-QUERY is a string, its contents are stuffed into the
  489.      terminal input buffer so that the shell (or whatever program next
  490.      reads input) can read them.
  491.  
  492.  - Variable: kill-emacs-hook
  493.      This variable is a normal hook (a list of functions); the first
  494.      thing `kill-emacs' does is to run this hook with `run-hooks'.  That
  495.      calls each of the functions in the list, with no arguments.
  496.  
  497. 
  498. File: elisp,  Node: Suspending Emacs,  Prev: Killing Emacs,  Up: Getting Out
  499.  
  500. Suspending Emacs
  501. ----------------
  502.  
  503.    "Suspending Emacs" means stopping Emacs temporarily and returning
  504. control to its superior process, which is usually the shell.  This
  505. allows you to resume editing later in the same Emacs process, with the
  506. same buffers, the same kill ring, the same undo history, and so on.  To
  507. resume Emacs, use the appropriate command in the parent shell--most
  508. likely `fg'.
  509.  
  510.    Some operating systems do not support suspension of jobs; on these
  511. systems, "suspension" actually creates a new shell temporarily as a
  512. subprocess of Emacs.  Then you would exit the shell to return to Emacs.
  513.  
  514.    Suspension is not useful with window systems such as X, because the
  515. Emacs job may not have a parent that can resume it again, and in any
  516. case you can give input to some other job such as a shell merely by
  517. moving to a different window.  Therefore, suspending is not allowed
  518. when Emacs is an X client.
  519.  
  520.  - Function: suspend-emacs STRING
  521.      This function stops Emacs and returns to the superior process.  It
  522.      returns `nil'.
  523.  
  524.      If STRING is non-`nil', its characters are sent to be read as
  525.      terminal input by Emacs's superior shell.  The characters in
  526.      STRING are not echoed by the superior shell; only the results
  527.      appear.
  528.  
  529.      Before suspending, `suspend-emacs' runs the normal hook
  530.      `suspend-hook'.  In Emacs version 18, `suspend-hook' was not a
  531.      normal hook; its value was a single function, and if its value was
  532.      non-`nil', then `suspend-emacs' returned immediately without
  533.      actually suspending anything.
  534.  
  535.      After the user resumes Emacs, it runs the normal hook
  536.      `suspend-resume-hook' using `run-hooks'.  *Note Hooks::.
  537.  
  538.      The next redisplay after resumption will redraw the entire screen,
  539.      unless the variable `no-redraw-on-reenter' is non-`nil' (*note
  540.      Refresh Screen::.).
  541.  
  542.      In the following example, note that `pwd' is not echoed after
  543.      Emacs is suspended.  But it is read and executed by the shell.
  544.  
  545.           (suspend-emacs)
  546.                => nil
  547.  
  548.           (add-hook 'suspend-hook
  549.                     (function (lambda ()
  550.                                 (or (y-or-n-p
  551.                                       "Really suspend? ")
  552.                                     (error "Suspend cancelled")))))
  553.                => (lambda nil
  554.                     (or (y-or-n-p "Really suspend? ")
  555.                         (error "Suspend cancelled")))
  556.  
  557.           (add-hook 'suspend-resume-hook
  558.                     (function (lambda () (message "Resumed!"))))
  559.                => (lambda nil (message "Resumed!"))
  560.  
  561.           (suspend-emacs "pwd")
  562.                => nil
  563.  
  564.           ---------- Buffer: Minibuffer ----------
  565.           Really suspend? `y'
  566.           ---------- Buffer: Minibuffer ----------
  567.  
  568.           ---------- Parent Shell ----------
  569.           lewis@slug[23] % /user/lewis/manual
  570.           lewis@slug[24] % fg
  571.  
  572.           ---------- Echo Area ----------
  573.           Resumed!
  574.  
  575.  - Variable: suspend-hook
  576.      This variable is a normal hook run before suspending.
  577.  
  578.  - Variable: suspend-resume-hook
  579.      This variable is a normal hook run after suspending.
  580.  
  581. 
  582. File: elisp,  Node: System Environment,  Next: User Identification,  Prev: Getting Out,  Up: System Interface
  583.  
  584. Operating System Environment
  585. ============================
  586.  
  587.    Emacs provides access to variables in the operating system
  588. environment through various functions.  These variables include the
  589. name of the system, the user's UID, and so on.
  590.  
  591.  - Variable: system-type
  592.      The value of this variable is a symbol indicating the type of
  593.      operating system Emacs is operating on.  Here is a table of the
  594.      symbols for the operating systems that Emacs can run on up to
  595.      version 19.1.
  596.  
  597.     `aix-v3'
  598.           AIX version 3.
  599.  
  600.     `berkeley-unix'
  601.           Berkeley BSD 4.1, 4.2, or 4.3.
  602.  
  603.     `hpux'
  604.           Hewlett-Packard operating system, version 5, 6, or 7.
  605.  
  606.     `irix'
  607.           Silicon Graphics Irix system.
  608.  
  609.     `rtu'
  610.           RTU 3.0, UCB universe.
  611.  
  612.     `unisoft-unix'
  613.           UniSoft's UniPlus 5.0 or 5.2.
  614.  
  615.     `usg-unix-v'
  616.           AT&T's System V.0, System V Release 2.0, 2.2, or 3.
  617.  
  618.     `vax-vms'
  619.           VAX VMS version 4 or 5.
  620.  
  621.     `xenix'
  622.           SCO Xenix 386 Release 2.2.
  623.  
  624.      We do not wish to add new symbols to make finer distinctions
  625.      unless it is absolutely necessary!  In fact, it would be nice to
  626.      eliminate some of these alternatives in the future.
  627.  
  628.  - Function: system-name
  629.      This function returns the name of the machine you are running on.
  630.           (system-name)
  631.                => "prep.ai.mit.edu"
  632.  
  633.  - Function: getenv VAR
  634.      This function returns the value of the environment variable VAR,
  635.      as a string.  If the variable `process-environment' specifies a
  636.      value for VAR, that overrides the actual environment.
  637.  
  638.           (getenv "USER")
  639.                => "lewis"
  640.           
  641.           lewis@slug[10] % printenv
  642.           PATH=.:/user/lewis/bin:/usr/bin:/usr/local/bin
  643.           USER=lewis
  644.           TERM=ibmapa16
  645.           SHELL=/bin/csh
  646.           HOME=/user/lewis
  647.  
  648.  - Command: setenv VARIABLE VALUE
  649.      This command sets the value of the environment variable named
  650.      VARIABLE to VALUE.  Both arguments should be strings.  This works
  651.      by modifying `process-environment'; binding that variable with
  652.      `let' is also reasonable practice.
  653.  
  654.  - Variable: process-environment
  655.      This variable is a list of strings to append to the environment of
  656.      processes as they are created.  Each string assigns a value to a
  657.      shell environment variable.  (This applies both to asynchronous and
  658.      synchronous processes.)  The function `getenv' also looks at this
  659.      variable.
  660.  
  661.           process-environment
  662.           => ("l=/usr/stanford/lib/gnuemacs/lisp"
  663.               "PATH=.:/user/lewis/bin:/usr/class:/nfsusr/local/bin"
  664.               "USER=lewis"
  665.  
  666.           "TERM=ibmapa16"
  667.               "SHELL=/bin/csh"
  668.               "HOME=/user/lewis")
  669.  
  670.  - Function: load-average
  671.      This function returns the current 1 minute, 5 minute and 15 minute
  672.      load averages in a list.  The values are integers that are 100
  673.      times the system load averages.  (The load averages indicate the
  674.      number of processes trying to run.)
  675.  
  676.           (load-average)
  677.                => (169 48 36)
  678.           
  679.           lewis@rocky[5] % uptime
  680.            11:55am  up 1 day, 19:37,  3 users,
  681.            load average: 1.69, 0.48, 0.36
  682.  
  683.  - Function: setprv PRIVILEGE-NAME &optional SETP GETPRV
  684.      This function sets or resets a VMS privilege.  (It does not exist
  685.      on Unix.)  The first arg is the privilege name, as a string.  The
  686.      second argument, SETP, is `t' or `nil', indicating whether the
  687.      privilege is to be turned on or off.  Its default is `nil'.  The
  688.      function returns `t' if success, `nil' if not.
  689.  
  690.      If the third argument, GETPRV, is non-`nil', `setprv' does not
  691.      change the privilege, but returns `t' or `nil' indicating whether
  692.      the privilege is currently enabled.
  693.  
  694. 
  695. File: elisp,  Node: User Identification,  Next: Time of Day,  Prev: System Environment,  Up: System Interface
  696.  
  697. User Identification
  698. ===================
  699.  
  700.  - Function: user-login-name
  701.      This function returns the name under which the user is logged in.
  702.      This is based on the effective UID, not the real UID.
  703.  
  704.           (user-login-name)
  705.                => "lewis"
  706.  
  707.  - Function: user-real-login-name
  708.      This function returns the name under which the user logged in.
  709.      This is based on the real UID, not the effective UID.  This
  710.      differs from `user-login-name' only when running with the setuid
  711.      bit.
  712.  
  713.  - Function: user-full-name
  714.      This function returns the full name of the user.
  715.  
  716.           (user-full-name)
  717.                => "Bil Lewis"
  718.  
  719.  - Function: user-real-uid
  720.      This function returns the real UID of the user.
  721.  
  722.           (user-real-uid)
  723.                => 19
  724.  
  725.  - Function: user-uid
  726.      This function returns the effective UID of the user.
  727.  
  728. 
  729. File: elisp,  Node: Time of Day,  Next: Timers,  Prev: User Identification,  Up: System Interface
  730.  
  731. Time of Day
  732. ===========
  733.  
  734.    This section explains how to determine the current time and the time
  735. zone.
  736.  
  737.  - Function: current-time-string &optional TIME-VALUE
  738.      This function returns the current time and date as a
  739.      humanly-readable string.  The format of the string is unvarying;
  740.      the number of characters used for each part is always the same, so
  741.      you can reliably use `substring' to extract pieces of it.
  742.      However, it would be wise to count the characters from the
  743.      beginning of the string rather than from the end, as additional
  744.      information may be added at the end.
  745.  
  746.      The argument TIME-VALUE, if given, specifies a time to format
  747.      instead of the current time.  The argument should be a cons cell
  748.      containing two integers, or a list whose first two elements are
  749.      integers.  Thus, you can use times obtained from `current-time'
  750.      (see below) and from `file-attributes' (*note File Attributes::.).
  751.  
  752.           (current-time-string)
  753.                => "Wed Oct 14 22:21:05 1987"
  754.  
  755.  - Function: current-time
  756.      This function returns the system's time value as a list of three
  757.      integers: `(HIGH LOW MICROSEC)'.  The integers HIGH and LOW
  758.      combine to give the number of seconds since 0:00 January 1, 1970,
  759.      which is HIGH * 2**16 + LOW.
  760.  
  761.      The third element, MICROSEC, gives the microseconds since the
  762.      start of the current second (or 0 for systems that return time
  763.      only on the resolution of a second).
  764.  
  765.      The first two elements can be compared with file time values such
  766.      as you get with the function `file-attributes'.  *Note File
  767.      Attributes::.
  768.  
  769.  - Function: current-time-zone &optional TIME-VALUE
  770.      This function returns a list describing the time zone that the
  771.      user is in.
  772.  
  773.      The value has the form `(OFFSET NAME)'.  Here OFFSET is an integer
  774.      giving the number of seconds ahead of UTC (east of Greenwich).  A
  775.      negative value means west of Greenwich.  The second element, NAME
  776.      is a string giving the name of the time zone.  Both elements
  777.      change when daylight savings time begins or ends; if the user has
  778.      specified a time zone that does not use a seasonal time
  779.      adjustment, then the value is constant through time.
  780.  
  781.      If the operating system doesn't supply all the information
  782.      necessary to compute the value, both elements of the list are
  783.      `nil'.
  784.  
  785.      The argument TIME-VALUE, if given, specifies a time to analyze
  786.      instead of the current time.  The argument should be a cons cell
  787.      containing two integers, or a list whose first two elements are
  788.      integers.  Thus, you can use times obtained from `current-time'
  789.      (see below) and from `file-attributes' (*note File Attributes::.).
  790.  
  791. 
  792. File: elisp,  Node: Timers,  Next: Terminal Input,  Prev: Time of Day,  Up: System Interface
  793.  
  794. Timers
  795. ======
  796.  
  797.    You can set up a timer to call a function at a specified future time.
  798.  
  799.  - Function: run-at-time TIME REPEAT FUNCTION &rest ARGS
  800.      This function arranges to call FUNCTION with arguments ARGS at
  801.      time TIME.  The argument FUNCTION is a function to call later, and
  802.      ARGS are the arguments to give it when it is called.  The time
  803.      TIME is specified as a string.
  804.  
  805.      Absolute times may be specified in a wide variety of formats; The
  806.      form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where all fields are
  807.      numbers, works; the format that `current-time-string' returns is
  808.      also allowed.
  809.  
  810.      To specify a relative time, use numbers followed by units.  For
  811.      example:
  812.  
  813.     `1 min'
  814.           denotes 1 minute from now.
  815.  
  816.     `1 min 5 sec'
  817.           denotes 65 seconds from now.
  818.  
  819.     `1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year'
  820.           denotes exactly 103 months, 123 days, and 10862 seconds from
  821.           now.
  822.  
  823.      If TIME is an integer, that specifies a relative time measured in
  824.      seconds.
  825.  
  826.      The argument REPEAT specifies how often to repeat the call.  If
  827.      REPEAT is `nil', there are no repetitions; FUNCTION is called just
  828.      once, at TIME.  If REPEAT is an integer, it specifies a repetition
  829.      period measured in seconds.
  830.  
  831.  - Function: cancel-timer TIMER
  832.      Cancel the requested action for TIMER, which should be a value
  833.      previously returned by `run-at-time'.  This cancels the effect of
  834.      that call to `run-at-time'; the arrival of the specified time will
  835.      not cause anything special to happen.
  836.  
  837. 
  838. File: elisp,  Node: Terminal Input,  Next: Terminal Output,  Prev: Timers,  Up: System Interface
  839.  
  840. Terminal Input
  841. ==============
  842.  
  843.    This section describes functions and variables for recording or
  844. manipulating terminal input.  See *Note Display::, for related
  845. functions.
  846.  
  847. * Menu:
  848.  
  849. * Input Modes::        Options for how input is processed.
  850. * Translating Input::   Low level conversion of some characters or events
  851.               into others.
  852. * Recording Input::    Saving histories of recent or all input events.
  853.  
  854. 
  855. File: elisp,  Node: Input Modes,  Next: Translating Input,  Up: Terminal Input
  856.  
  857. Input Modes
  858. -----------
  859.  
  860.  - Function: set-input-mode INTERRUPT FLOW META QUIT-CHAR
  861.      This function sets the mode for reading keyboard input.  If
  862.      INTERRUPT is non-null, then Emacs uses input interrupts.  If it is
  863.      `nil', then it uses CBREAK mode.
  864.  
  865.      If FLOW is non-`nil', then Emacs uses XON/XOFF (`C-q', `C-s') flow
  866.      control for output to terminal.  This has no effect except in
  867.      CBREAK mode.  *Note Flow Control::.
  868.  
  869.      The normal setting is system dependent.  Some systems always use
  870.      CBREAK mode regardless of what is specified.
  871.  
  872.      The argument META controls support for input character codes above
  873.      127.  If META is `t', Emacs converts characters with the 8th bit
  874.      set into Meta characters.  If META is `nil', Emacs disregards the
  875.      8th bit; this is necessary when the terminal uses it as a parity
  876.      bit.  If META is neither `t' nor `nil', Emacs uses all 8 bits of
  877.      input unchanged.  This is good for terminals using European 8-bit
  878.      character sets.
  879.  
  880.      If QUIT-CHAR is non-`nil', it specifies the character to use for
  881.      quitting.  Normally this character is `C-g'.  *Note Quitting::.
  882.  
  883.    The `current-input-mode' function returns the input mode settings
  884. Emacs is currently using.
  885.  
  886.  - Function: current-input-mode
  887.      This function returns current mode for reading keyboard input.  It
  888.      returns a list, corresponding to the arguments of `set-input-mode',
  889.      of the form `(INTERRUPT FLOW META QUIT)' in which:
  890.     INTERRUPT
  891.           is non-`nil' when Emacs is using interrupt-driven input.  If
  892.           `nil', Emacs is using CBREAK mode.
  893.  
  894.     FLOW
  895.           is non-`nil' if Emacs uses XON/XOFF (`C-q', `C-s') flow
  896.           control for output to the terminal.  This value has no effect
  897.           unless INTERRUPT is non-`nil'.
  898.  
  899.     META
  900.           is non-`nil' if Emacs is paying attention to the eighth bit of
  901.           input characters; if nil, Emacs clears the eighth bit of
  902.           every input character.
  903.  
  904.     QUIT
  905.           is the character Emacs currently uses for quitting, usually
  906.           `C-g'.
  907.  
  908.  - Variable: meta-flag
  909.      This variable used to control whether to treat the 0200 bit in
  910.      keyboard input as the Meta bit.  `nil' meant no, and anything else
  911.      meant yes.  This variable existed in Emacs versions 18 and earlier
  912.      but no longer exists in Emacs 19; use `set-input-mode' instead.
  913.  
  914. 
  915. File: elisp,  Node: Translating Input,  Next: Recording Input,  Prev: Input Modes,  Up: Terminal Input
  916.  
  917. Translating Input Events
  918. ------------------------
  919.  
  920.  - Variable: extra-keyboard-modifiers
  921.      This variable lets Lisp programs "press" the modifier keys on the
  922.      keyboard.  The value is a bit mask:
  923.  
  924.     1
  925.           The SHIFT key.
  926.  
  927.     2
  928.           The LOCK key.
  929.  
  930.     4
  931.           The CTL key.
  932.  
  933.     8
  934.           The META key.
  935.  
  936.      Each time the user types a keyboard key, it is altered as if the
  937.      modifier keys specified in the bit mask were held down.
  938.  
  939.      When you use X windows, the program can "press" any of the modifier
  940.      keys in this way.  Otherwise, only the CTL and META keys can be
  941.      virtually pressed.
  942.  
  943.  - Variable: keyboard-translate-table
  944.      This variable is the translate table for keyboard characters.  It
  945.      lets you reshuffle the keys on the keyboard without changing any
  946.      command bindings.  Its value must be a string or `nil'.
  947.  
  948.      If `keyboard-translate-table' is a string, then each character read
  949.      from the keyboard is looked up in this string and the character in
  950.      the string is used instead.  If the string is of length N,
  951.      character codes N and up are untranslated.
  952.  
  953.      In the example below, we set `keyboard-translate-table' to a
  954.      string of 128 characters.  Then we fill it in to swap the
  955.      characters `C-s' and `C-\' and the characters `C-q' and `C-^'.
  956.      Subsequently, typing `C-\' has all the usual effects of typing
  957.      `C-s', and vice versa.  (*Note Flow Control:: for more information
  958.      on this subject.)
  959.  
  960.           (defun evade-flow-control ()
  961.             "Replace C-s with C-\ and C-q with C-^."
  962.             (interactive)
  963.             (let ((the-table (make-string 128 0)))
  964.               (let ((i 0))
  965.                 (while (< i 128)
  966.                   (aset the-table i i)
  967.                   (setq i (1+ i))))
  968.           
  969.               ;; Swap `C-s' and `C-\'.
  970.               (aset the-table ?\034 ?\^s)
  971.               (aset the-table ?\^s ?\034)
  972.               ;; Swap `C-q' and `C-^'.
  973.               (aset the-table ?\036 ?\^q)
  974.               (aset the-table ?\^q ?\036)
  975.           
  976.               (setq keyboard-translate-table the-table)))
  977.  
  978.      Note that this translation is the first thing that happens to a
  979.      character after it is read from the terminal.  Record-keeping
  980.      features such as `recent-keys' and dribble files record the
  981.      characters after translation.
  982.  
  983.  - Function: keyboard-translate FROM TO
  984.      This function modifies `keyboard-translate-table' to translate
  985.      character code FROM into character code TO.  It creates or
  986.      enlarges the translate table if necessary.
  987.  
  988.  - Variable: function-key-map
  989.      This variable holds a keymap which describes the character
  990.      sequences sent by function keys on an ordinary character terminal.
  991.      This keymap uses the data structure as other keymaps, but is used
  992.      differently: it specifies translations to make while reading
  993.      events.
  994.  
  995.      If `function-key-map' "binds" a key sequence K to a vector V, then
  996.      when K appears as a subsequence *anywhere* in a key sequence, it
  997.      is replaced with the events in V.
  998.  
  999.      For example, VT100 terminals send `ESC O P' when the keypad PF1
  1000.      key is pressed.  Therefore, we want Emacs to translate that
  1001.      sequence of events into the single event `pf1'.  We accomplish
  1002.      this by "binding" `ESC O P' to `[pf1]' in `function-key-map', when
  1003.      using a VT100.
  1004.  
  1005.      Thus, typing `C-c PF1' sends the character sequence `C-c ESC O P';
  1006.      later the function `read-key-sequence' translates this back into
  1007.      `C-c PF1', which it returns as the vector `[?\C-c pf1]'.
  1008.  
  1009.      Entries in `function-key-map' are ignored if they conflict with
  1010.      bindings made in the minor mode, local, or global keymaps.  The
  1011.      intent is that the character sequences that function keys send
  1012.      should not have command bindings in their own right.
  1013.  
  1014.      The value of `function-key-map' is usually set up automatically
  1015.      according to the terminal's Terminfo or Termcap entry, but
  1016.      sometimes those need help from terminal-specific Lisp files.
  1017.      Emacs comes with a number of terminal-specific files for many
  1018.      common terminals; their main purpose is to make entries in
  1019.      `function-key-map' beyond those that can be deduced from Termcap
  1020.      and Terminfo.  *Note Terminal-Specific::.
  1021.  
  1022.      Emacs versions 18 and earlier used totally different means of
  1023.      detecting the character sequences that represent function keys.
  1024.  
  1025.  - Variable: key-translation-map
  1026.      This variable is another keymap used just like `function-key-map'
  1027.      to translate input events into other events.  It differs from
  1028.      `function-key-map' in two ways:
  1029.  
  1030.         * `key-translation-map' goes to work after `function-key-map' is
  1031.           finished; it receives the results of translation by
  1032.           `function-key-map'.
  1033.  
  1034.         * `key-translation-map' overrides actual key bindings.
  1035.  
  1036.      The intent of `key-translation-map' is for users to map one
  1037.      character set to another, including ordinary characters normally
  1038.      bound to `self-insert-command'.
  1039.  
  1040. 
  1041. File: elisp,  Node: Recording Input,  Prev: Translating Input,  Up: Terminal Input
  1042.  
  1043. Recording Input
  1044. ---------------
  1045.  
  1046.  - Function: recent-keys
  1047.      This function returns a vector containing the last 100 input events
  1048.      from the keyboard or mouse.  All input events are included,
  1049.      whether or not they were used as parts of key sequences.  Thus,
  1050.      you always get the last 100 inputs, not counting keyboard macros.
  1051.      (Events from keyboard macros are excluded because they are less
  1052.      interesting for debugging; it should be enough to see the events
  1053.      which invoked the macros.)
  1054.  
  1055.  - Command: open-dribble-file FILENAME
  1056.      This function opens a "dribble file" named FILENAME.  When a
  1057.      dribble file is open, each input event from the keyboard or mouse
  1058.      (but not those from keyboard macros) are written in that file.  A
  1059.      non-character event is expressed using its printed representation
  1060.      surrounded by `<...>'.
  1061.  
  1062.      You close the dribble file by calling this function with an
  1063.      argument of `nil'.  The function always returns `nil'.
  1064.  
  1065.      This function is normally used to record the input necessary to
  1066.      trigger an Emacs bug, for the sake of a bug report.
  1067.  
  1068.           (open-dribble-file "~/dribble")
  1069.                => nil
  1070.  
  1071.    See also the `open-termscript' function (*note Terminal Output::.).
  1072.  
  1073. 
  1074. File: elisp,  Node: Terminal Output,  Next: Flow Control,  Prev: Terminal Input,  Up: System Interface
  1075.  
  1076. Terminal Output
  1077. ===============
  1078.  
  1079.    The terminal output functions send output to the terminal or keep
  1080. track of output sent to the terminal.  The variable `baud-rate' tells
  1081. you what Emacs thinks is the output speed of the terminal.
  1082.  
  1083.  - Variable: baud-rate
  1084.      This variable's value is the output speed of the terminal, as far
  1085.      as Emacs knows.  Setting this variable does not change the speed
  1086.      of actual data transmission, but the value is used for
  1087.      calculations such as padding.  It also affects decisions about
  1088.      whether to scroll part of the screen or repaint--even when using a
  1089.      window system, (We designed it this way despite the fact that a
  1090.      window system has no true "output speed", to give you a way to
  1091.      tune these decisions.)
  1092.  
  1093.      The value is measured in baud.
  1094.  
  1095.    If you are running across a network, and different parts of the
  1096. network work at different baud rates, the value returned by Emacs may be
  1097. different from the value used by your local terminal.  Some network
  1098. protocols communicate the local terminal speed to the remote machine, so
  1099. that Emacs and other programs can get the proper value, but others do
  1100. not.  If Emacs has the wrong value, it makes decisions that are less
  1101. than optimal.  To fix the problem, set `baud-rate'.
  1102.  
  1103.  - Function: baud-rate
  1104.      This function returns the value of the variable `baud-rate'.  In
  1105.      Emacs versions 18 and earlier, this was the only way to find out
  1106.      the terminal speed.
  1107.  
  1108.  - Function: send-string-to-terminal STRING
  1109.      This function sends STRING to the terminal without alteration.
  1110.      Control characters in STRING have terminal-dependent effects.
  1111.  
  1112.      One use of this function is to define function keys on terminals
  1113.      that have downloadable function key definitions.  For example,
  1114.      this is how on certain terminals to define function key 4 to move
  1115.      forward four characters (by transmitting the characters `C-u C-f'
  1116.      to the computer):
  1117.  
  1118.           (send-string-to-terminal "\eF4\^U\^F")
  1119.                => nil
  1120.  
  1121.  - Command: open-termscript FILENAME
  1122.      This function is used to open a "termscript file" that will record
  1123.      all the characters sent by Emacs to the terminal.  It returns
  1124.      `nil'.  Termscript files are useful for investigating problems
  1125.      where Emacs garbles the screen, problems which are due to incorrect
  1126.      Termcap entries or to undesirable settings of terminal options more
  1127.      often than actual Emacs bugs.  Once you are certain which
  1128.      characters were actually output, you can determine reliably
  1129.      whether they correspond to the Termcap specifications in use.
  1130.  
  1131.      See also `open-dribble-file' in *Note Terminal Input::.
  1132.  
  1133.           (open-termscript "../junk/termscript")
  1134.                => nil
  1135.  
  1136. 
  1137. File: elisp,  Node: Flow Control,  Next: Batch Mode,  Prev: Terminal Output,  Up: System Interface
  1138.  
  1139. Flow Control
  1140. ============
  1141.  
  1142.    This section attempts to answer the question "Why does Emacs choose
  1143. to use flow-control characters in its command character set?"  For a
  1144. second view on this issue, read the comments on flow control in the
  1145. `emacs/INSTALL' file from the distribution; for help with Termcap
  1146. entries and DEC terminal concentrators, see `emacs/etc/TERMS'.
  1147.  
  1148.    At one time, most terminals did not need flow control, and none used
  1149. `C-s' and `C-q' for flow control.  Therefore, the choice of `C-s' and
  1150. `C-q' as command characters was unobjectionable.  Emacs, for economy of
  1151. keystrokes and portability, used nearly all the ASCII control
  1152. characters, with mnemonic meanings when possible; thus, `C-s' for
  1153. search and `C-q' for quote.
  1154.  
  1155.    Later, some terminals were introduced which required these characters
  1156. for flow control.  They were not very good terminals for full-screen
  1157. editing, so Emacs maintainers did not pay attention.  In later years,
  1158. flow control with `C-s' and `C-q' became widespread among terminals,
  1159. but by this time it was usually an option.  And the majority of users,
  1160. who can turn flow control off, were unwilling to switch to less
  1161. mnemonic key bindings for the sake of flow control.
  1162.  
  1163.    So which usage is "right", Emacs's or that of some terminal and
  1164. concentrator manufacturers?  This is a rhetorical (or religious)
  1165. question; it has no simple answer.
  1166.  
  1167.    One reason why we are reluctant to cater to the problems caused by
  1168. `C-s' and `C-q' is that they are gratuitous.  There are other
  1169. techniques (albeit less common in practice) for flow control that
  1170. preserve transparency of the character stream.  Note also that their use
  1171. for flow control is not an official standard.  Interestingly, on the
  1172. model 33 teletype with a paper tape punch (which is very old), `C-s'
  1173. and `C-q' were sent by the computer to turn the punch on and off!
  1174.  
  1175.    GNU Emacs version 19 provides a convenient way of enabling flow
  1176. control if you want it: call the function `enable-flow-control'.
  1177.  
  1178.  - Function: enable-flow-control
  1179.      This function enables use of `C-s' and `C-q' for output flow
  1180.      control, and provides the characters `C-\' and `C-^' as aliases
  1181.      for them using `keyboard-translate-table' (*note Translating
  1182.      Input::.).
  1183.  
  1184.    You can use the function `enable-flow-control-on' in your `.emacs'
  1185. file to enable flow control automatically on certain terminal types.
  1186.  
  1187.  - Function: enable-flow-control-on &rest TERMTYPES
  1188.      This function enables flow control, and the aliases `C-\' and
  1189.      `C-^', if the terminal type is one of TERMTYPES.  For example:
  1190.  
  1191.           (enable-flow-control-on "vt200" "vt300" "vt101" "vt131")
  1192.  
  1193.    Here is how `enable-flow-control' does its job:
  1194.  
  1195.   1. It sets CBREAK mode for terminal input, and tells the kernel to
  1196.      handle flow control, with `(set-input-mode nil t)'.
  1197.  
  1198.   2. It sets up `keyboard-translate-table' to translate `C-\' and `C-^'
  1199.      into `C-s' and `C-q' were typed.  Except at its very lowest level,
  1200.      Emacs never knows that the characters typed were anything but
  1201.      `C-s' and `C-q', so you can in effect type them as `C-\' and `C-^'
  1202.      even when they are input for other commands.  For example:
  1203.  
  1204.           (setq keyboard-translate-table (make-string 128 0))
  1205.           (let ((i 0))
  1206.             ;; Map most characters into themselves.
  1207.             (while (< i 128)
  1208.               (aset keyboard-translate-table i i)
  1209.               (setq i (1+ i))))
  1210.  
  1211.           ;; Map `C-\' to `C-s'.
  1212.             (aset the-table ?\034 ?\^s)
  1213.  
  1214.           ;; Map `C-^' to `C-q'.
  1215.             (aset the-table ?\036 ?\^q)))
  1216.  
  1217.    If the terminal is the source of the flow control characters, then
  1218. once you enable kernel flow control handling, you probably can make do
  1219. with less padding than normal for that terminal.  You can reduce the
  1220. amount of padding by customizing the Termcap entry.  You can also
  1221. reduce it by setting `baud-rate' to a smaller value so that Emacs uses
  1222. a smaller speed when calculating the padding needed.  *Note Terminal
  1223. Output::.
  1224.  
  1225. 
  1226. File: elisp,  Node: Batch Mode,  Prev: Flow Control,  Up: System Interface
  1227.  
  1228. Batch Mode
  1229. ==========
  1230.  
  1231.    The command line option `-batch' causes Emacs to run
  1232. noninteractively.  In this mode, Emacs does not read commands from the
  1233. terminal, it does not alter the terminal modes, and it does not expect
  1234. to be outputting to an erasable screen.  The idea is that you specify
  1235. Lisp programs to run; when they are finished, Emacs should exit.  The
  1236. way to specify the programs to run is with `-l FILE', which loads the
  1237. library named FILE, and `-f FUNCTION', which calls FUNCTION with no
  1238. arguments.
  1239.  
  1240.    Any Lisp program output that would normally go to the echo area,
  1241. either using `message' or using `prin1', etc., with `t' as the stream,
  1242. goes instead to Emacs's standard output descriptor when in batch mode.
  1243. Thus, Emacs behaves much like a noninteractive application program.
  1244. (The echo area output that Emacs itself normally generates, such as
  1245. command echoing, is suppressed entirely.)
  1246.  
  1247.  - Variable: noninteractive
  1248.      This variable is non-`nil' when Emacs is running in batch mode.
  1249.  
  1250.